Conversation
Co-authored-by: David Stansby <dstansby@gmail.com>
- make LineBaseWidget - make LineWidget for plotting intensities under shapes layer - make FeaturesLineWidget for plotting features from labels layer (grouped by a label column matching labels in layer)
dstansby
left a comment
There was a problem hiding this comment.
Just having a play around with this, and I'm confused by what the "object-id" selector is for? Why are there not just two selectors that select what is being plotted on the x/y axes?
And following on from that, how is this different from the FeaturesScatterWidget? Could we add the functionality desired by just doing exactly the same as FeaturesScatterWidget, but joining the scatter points with a line?
| @@ -210,6 +210,9 @@ def current_z(self) -> int: | |||
| Current z-step of the napari viewer. | |||
| """ | |||
| return self.viewer.dims.current_step[0] | |||
There was a problem hiding this comment.
| return self.viewer.dims.current_step[0] |
There was a problem hiding this comment.
I assume the line self.viewer.dims.current_step[-3] is a bug fix below for datasets that have >= 4 dimensions?
There was a problem hiding this comment.
We can drop it for now since it does no affect this PR anymore. It had to do with other dimensions, yes
Good question. So the By the way, I noticed I was still calling 'label' in other places, so I renamed them to
Hmm I am not sure. Over there, the |
|
Hi @dstansby , Did you have some time to consider this feature? Thanks for your time on reviewing this! |
|
This would close #60 |
Hi @dstansby ,
As suggested in #184 , I am transferring the code here without the
LineWidget.This PR brings a
BaseLineWidgetand aFeaturesLineWidgetto napari-matplotlib, where theFeaturesLineWidgethas anobject-idfield capable of grouping objects before plotting, thus displaying individual line plots for each object.Best,
Marcelo